home *** CD-ROM | disk | FTP | other *** search
- # -----------------------------------------------------------
- # Allgemeine Manoever fuer Vehicle:
- # einfacher Zielanflug
- #
- # ⌐ radon labs gmbh
- #
- # 08-Aug-00 af created
- # 21-Jan-02 peter added torpedo-fighter-specific commandlist
- # ------------------------------------------------------------
-
- # commandlists fuer skrits wenn sie kein ziel haben
- new nroot critter/waitsearch
- sel critter/waitsearch
- new ncommandlist left
- left.setadjusttype reach
- left.settestcommand critter_rand
- left.addcommand true -10 0 -10 false 0 0 0 nothing 3.0
- new ncommandlist right
- right.setadjusttype reach
- right.settestcommand critter_rand
- right.addcommand true 10 0 -10 false 0 0 0 nothing 3.0
- new ncommandlist straight
- straight.setadjusttype reach
- straight.settestcommand critter_rand
- straight.addcommand true 0 0 -10 false 0 0 0 nothing 3.0
- new ncommandlist back
- back.setadjusttype reach
- back.settestcommand critter_rand
- back.addcommand true 0 0 10 false 0 0 0 nothing 3.0
-
- proc critter_rand {} {
- return [expr rand()]
- }
- sel ..
- sel ..
- new nroot critter/goto
- sel critter/goto
- new ncommandlist go
- go.setadjusttype follow
- go.settestcommand critter_const
- go.addcommand true 0 0 -10 false 0 0 0 nothing 3.0
- proc critter_const {} {
- return 1.0
- }
- sel ..
- sel ..
-
-
- # eine Root fuer Anflugmanoever
- new nroot vehicle/goto
- sel vehicle/goto
-
- # einfaches Anfliegen
- new ncommandlist goto
- goto.setadjusttype reach
- goto.settestcommand vgoto_gototest
- goto.addcommand true 0 0 -10 false 0 0 0 nothing 5.0
-
- proc vgoto_gototest {} {
-
- if {[.hasguidetarget] == "true"} {
- return 0.1
- } else {
- return 1.0
- }
- }
-
- # Mitfliegen. Wir brauchen eine Manoeveraehnliche Kurve, die am Ziel
- # (dessen Position und Richtung) haengt. Das ist "approach"
- new ncommandlist guide
- guide.setadjusttype guide
- guide.settestcommand vgoto_guidetest
- guide.addcommand true 0 0 -200 false 0 0 0 nothing 1.0
-
- proc vgoto_guidetest {} {
-
- if {[.hasguidetarget] == "true"} {
- if {[.reachedtarget] == "true"} {
- return 1.0
- } else {
- return 0.0
- }
- } else {
- return 0.0
- }
- }
-
- sel ..
- sel ..
-
- new nroot vehicle/gotoabove
- sel vehicle/gotoabove
- #ein bisschen hoeher fliegen als normal, damit Torpedo trifft
- new ncommandlist goto
- goto.setadjusttype reach
- goto.settestcommand vgoto_gototest
- goto.addcommand true 0 4 -10 false 0 0 0 nothing 5.0
- #die automatische Zielausrichtung orientiert sich am letzten Command,
- #deshalb muessen hier die eigentlichen Koordinaten stehen
- goto.addcommand true 0 0 -10 false 0 0 0 nothing 5.01
-
- sel ..
- sel ..
-